@font-face {
    font-family: 'Sriracha';
    src: url('../uploads/fonts/Sriracha/Sriracha/Sriracha-Regular.ttf');
}

header{
    height: 150px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

#titulo{
    background-color: #40E0D0;
    width: 400px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 100px;
    font-family: 'Sriracha';
    font-weight: bold;
    border-radius: 20px;
}

main{
      
}

#menuPrincipal
{
    background-color: #40E0D0;
    height: 100px;
    display: flex;
    flex-direction: row;
    gap: 30px;
    align-items: center;
    justify-content: center;
    border-radius: 20px;  
    padding-right: 0%; 
    width: 100%;
}

footer{
    display: flex;
    align-items: center;
    justify-content: center;
}

#paidDeptoMun{
    display: flex;
    align-items: center;
    justify-content: center;
}

.filtroLabel{
    width: 140px;
    font-family: Sriracha;
    font-size: 20px;
    margin-right: 10px;
    display: flex;
    justify-content: center;
    margin-right: -20px;
    color: #0F6B57;
}

.filtroSelect{
    position: relative;
    display: inline-block;
    width: 97%;
}

select{
    display: inline-block;
    width: 100%;
    height: 35px;
    font-family: Sriracha,Arial, Helvetica, sans-serif;
    font-size: 20px;
    margin-right: 10px;
    border-radius: 10px;
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    border: 3px solid #36C9B3;
    cursor: pointer;
    color: #0F6B57;
    text-align: center;
}

.filtroSelect::after{
    content: "";
    position: absolute;
    right: 5%;
    top: 60%;
    transform: translateY(-50%);
    border: 6px solid transparent;
    border-color: #0F6B57 transparent transparent transparent;
    pointer-events: none;
}

select:focus{
    border-color: #36C9B3;
    outline: none;
}

a{
    text-decoration: none;
}

#map{
    height: 500px;
    width: 100%;
}

.botonRuta{
    all: unset;
    width: 80px;
    background-color: #40E0D0;
    font-family: cursive;
    font-weight: bold;
    color: white;
    border-color: #0F6B57;
    text-align: center;
    border: 3px solid #36C9B3;
    border-radius: 5px;
    transition: all 0.3s ease;
}

.botonRuta:hover{
    cursor: pointer;
    color: #0F6B57;

}

#listaRutas{
    list-style: none;
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 columnas */
    grid-template-rows: repeat(4, auto);  /* 4 filas */
    gap: 10px;
    text-align: left;
    color: #0F6B57;
}

#itemListaRuta{
    font-family: cursive;
}

#paginacion{
    display: flex;
    justify-content: center;
    align-items: center;

}

#paginaInfo{
    font-family: cursive;
    margin-left: 10px;
    margin-right: 10px;
    color: #0F6B57;
}

#prevBtn{
    all: unset;
    width: 80px;
    background-color: #40E0D0;
    font-family: cursive;
    font-weight: bold;
    color: white;
    text-align: center;
    border: 3px solid #36C9B3;
    border-radius: 5px;
    transition: all 0.3s ease;
}

#prevBtn:hover{
    cursor: pointer;
    color: #0F6B57;
}

#nextBtn{
    all: unset;
    width: 80px;
    background-color: #40E0D0;
    font-family: cursive;
    font-weight: bold;
    color: white;
    text-align: center;
    border: 3px solid #36C9B3;
    border-radius: 5px;
    transition: all 0.3s ease;
}

#nextBtn:hover{
    cursor: pointer;
    color: #0F6B57;
}

.grupo{
    display: flex;
    align-content: left;
    align-items: left;
    width:100%;
    gap: 5%;
}


@media(max-width: 1024px){
    .grupo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 95%;
    align-content: center;
    align-items: center;
    
    }

    #menuPrincipal{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding-top: 100px;
    padding-bottom: 125px;
    align-content: center;
    align-items: center;
    width: 100%;
    }

    select{
        width: 100%;
    }

    .filtroSelect{
        width: 100%;
    }

    .filtroSelect::after{
        right: 5%;
    }

    header{
        width: 100%;
    }

    #aTitulo{
        width: 100%;
    }

    #titulo{
        width: 100%;
    }
}